From 3cca34a914d328bf6d5343c61e35238c934dbf45 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Wed, 15 Nov 2000 13:56:10 +0000 Subject: [PATCH] (texinfo-insert-@uref): Renamed from texinfo-insert-@url. (texinfo-insert-@url): A defalias for texinfo-insert-@uref. (texinfo-mode-map): Bind "C-c C-c u" to texinfo-insert-@uref. --- lisp/textmodes/texinfo.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index d578362f517..7f5ff90484b 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -398,10 +398,9 @@ chapter." (define-key texinfo-mode-map "\C-c\C-c\C-e" 'texinfo-insert-@emph) (define-key texinfo-mode-map "\C-c\C-cv" 'texinfo-insert-@var) - (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@url) + (define-key texinfo-mode-map "\C-c\C-cu" 'texinfo-insert-@uref) (define-key texinfo-mode-map "\C-c\C-ct" 'texinfo-insert-@table) (define-key texinfo-mode-map "\C-c\C-cs" 'texinfo-insert-@samp) - ;; (define-key texinfo-mode-map "\C-c\C-cr" 'texinfo-insert-@uref) (define-key texinfo-mode-map "\C-c\C-cq" 'texinfo-insert-@quotation) (define-key texinfo-mode-map "\C-c\C-co" 'texinfo-insert-@noindent) (define-key texinfo-mode-map "\C-c\C-cn" 'texinfo-insert-@node) @@ -822,12 +821,13 @@ The default is not to surround any existing words with the braces." (interactive "P") (texinfo-insert-@-with-arg "var" arg)) -(defun texinfo-insert-@url (&optional arg) +(defun texinfo-insert-@uref (&optional arg) "Insert a `@url{}' command in a Texinfo buffer. A numeric argument says how many words the braces should surround. The default is not to surround any existing words with the braces." (interactive "P") - (texinfo-insert-@-with-arg "url" arg)) + (texinfo-insert-@-with-arg "uref" arg)) +(defalias 'texinfo-insert-@url 'texinfo-insert-@uref) ;;; Texinfo file structure -- 2.30.2